00 序論
2020.4.2
https://gyazo.com/601a56f16731f10b984c0fdcf2c22df4
code: diagram.py
from graphviz import Digraph
G = Digraph(format='pdf')
G.attr('node', shape='box')
G.node('ch0', '準備')
G.node('ch1', '第1章 数学の基礎とPython')
G.node('ch2', '第2章 線形空間と線形写像')
G.node('ch3', '第3章 基底と次元')
G.node('ch4', '第4章 行列')
G.node('ch5', '第5章 行列の基本変形と不変量')
G.node('ch6', '第6章 内積とフーリエ展開')
G.node('ch7', '第7章 固有値と固有ベクトル')
G.node('ch8', '第8章 ジョルダン標準形とスペクトル集合')
G.node('ch9', '第9章 力学系')
G.node('ch10', '第10章 線形代数の応用と発展')
G.edge('ch0', 'ch1')
G.edge('ch1', 'ch2')
G.edge('ch2', 'ch3')
G.edge('ch2', 'ch6')
G.edge('ch3', 'ch4')
G.edge('ch4', 'ch5')
G.edge('ch4', 'ch6')
G.edge('ch5', 'ch7')
G.edge('ch5', 'ch10')
G.edge('ch6', 'ch7')
G.edge('ch6', 'ch8')
G.edge('ch6', 'ch10')
G.edge('ch7', 'ch8')
G.edge('ch7', 'ch10')
G.edge('ch8', 'ch9')
G.render('diagram')
https://gyazo.com/542f8c6faa2cfb413b7b479fa934e7c4